home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000281_nathan.rousseau…anetmedica.com_Thu Jul 19 10:14:29 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  56 lines

  1. Article: 12619 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!nycmny1-snh1.gtei.net!news.gtei.net!newsfeed.mathworks.com!dispose.news.demon.net!demon!skynet.be!louie!not-for-mail
  3. From: "Nathan Rousseau" <nathan.rousseau@planetmedica.com>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: when does the kermit phone call stop?
  6. Date: Thu, 19 Jul 2001 07:42:41 +0200
  7. X-Priority: 3
  8. X-MSMail-Priority: Normal
  9. X-Newsreader: Microsoft Outlook Express 5.50.4133.2400
  10. X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
  11. Lines: 37
  12. Message-ID: <3b567588$0$4564$ba620e4c@news.skynet.be>
  13. Organization: -= Skynet Usenet Service =-
  14. NNTP-Posting-Host: 194.78.198.82
  15. X-Trace: 995521929 reader1.news.skynet.be 4564 194.78.198.82
  16. X-Complaints-To: abuse@skynet.be
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12619
  18.  
  19. Hi,
  20.  
  21. I have one kermit session waiting for phone call, my main loop to answer
  22. call is :
  23.  
  24. while 1 {
  25.   ANSWER
  26.   IF SUCCESS {
  27.     SERVER
  28.   } ELSE {
  29.     ECHO ANSWER FAILED
  30.   }
  31. }
  32.  
  33. When one call finish, the kermit process go back to "answer" mode
  34.  
  35. My problem is :
  36.  
  37. People connect to kermit session to send file....
  38.  
  39. When they send file, i receive the file, but the kermit session doesn't
  40. return to "answer" mode.
  41. Kermit stay with the screen of download with the "Last Message" item as
  42. "Transfer OK"
  43.  
  44. And the modem stay active!!!! even if the sender has turned its modem off,
  45. hang up the phone.
  46. So next user can't connect because when he phones, he has a busy line...
  47.  
  48. What parameter do i have to set to hangup the phone when the user has
  49. finished?
  50.  
  51. Thanks in advance
  52.  
  53. Nathan Rousseau
  54.  
  55.  
  56.